home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 December
/
PCWorld_2007-12_cd.bin
/
domacnost a kancelar
/
autoit
/
autoit-v3-setup.exe
/
Examples
/
Helpfile
/
GUICtrlSetCursor.au3
< prev
next >
Wrap
Text File
|
2007-09-08
|
208b
|
12 lines
#include <GUIConstants.au3>
GUICreate("put cursor over label", 300, 100)
GUICtrlCreateLabel("label",125,40)
GUICtrlSetCursor(-1, 4)
GUISetState ()
While GUIGetMsg()<> $GUI_EVENT_CLOSE
WEnd
Exit